/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.1.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [1 -1 -2 0 0 0 0];

internalField   uniform 3000000;


boundaryField
{
    inlet1
    {
        type            totalPressure;
        p0              uniform 3000000;
        gamma		 1.4;
        value           $internalField;
    }

    outlet
    {
        type            fixedValue;
	value		uniform 2067400;
    }

    bottom
    {
        type            symmetryPlane;
    }
    top
    {
        type            zeroGradient;
    }

    nozzle
    {
        type            zeroGradient;
    }

    defaultFaces
    {
        type            empty;
    }
}

// ************************************************************************* //
